@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

@font-face {
    font-family: 'Merriweather';
    src: url('fonts/Merriweather-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('fonts/Merriweather-Bold.ttf') format('truetype');
    font-weight: bold;
}

ol {
    margin-left: 0px !important;
}

/*Width and Height*/
.w-full {
    width: 100%;
}

.w-1\2 {
    width: 50%;
}

.w-1\3 {
    width: 33.33%;
}

.w-1\4 {
    width: 25%;
}

.w-3\4 {
    width: 75%;
}

.w-1\5 {
    width: 20%;
}

.w-2\5 {
    width: 40%;
}

.w-3\5 {
    width: 60%;
}

.w-4\5 {
    width: 80%;
}

.w-screen {
    width: 100vw;
}

.h-full {
    height: 100%;
}

.h-1\2 {
    height: 50%;
}

.h-1\3 {
    height: 33.33%;
}

.h-1\4 {
    height: 25%;
}

.h-3\4 {
    height: 75%;
}

.h-1\5 {
    height: 20%;
}

.h-2\5 {
    height: 40%;
}

.h-3\5 {
    height: 60%;
}

.h-4\5 {
    height: 80%;
}

.h-screen {
    height: 100vh;
}

.h-auto {
    height: auto;
}

.h-2 {
    height: 0.5rem;
}

.h-4 {
    height: 1rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem; /* 56px */
}

.h-16 {
    height: 4rem; /* 64px */
}

.h-20 {
    height: 5rem; /* 80px */
}

.h-24 {
    height: 6rem; /* 96px */
}

.h-28 {
    height: 7rem; /* 112px */
}

.h-32 {
    height: 8rem; /* 128px */
}

.h-36 {
    height: 9rem; /* 144px */
}

.h-40 {
    height: 10rem; /* 160px */
}

.h-44 {
    height: 11rem; /* 176px */
}

.h-48 {
    height: 12rem; /* 192px */
}

.h-52 {
    height: 13rem; /* 208px */
}

.h-56 {
    height: 14rem; /* 224px */
}

.h-60 {
    height: 15rem; /* 240px */
}

.h-64 {
    height: 16rem; /* 256px */
}

.h-72 {
    height: 18rem; /* 288px */
}

.h-80 {
    height: 20rem; /* 320px */
}

.h-96 {
    height: 24rem; /* 384px */
}

.min-h-8 {
    min-height: 2rem;
}

.min-h-10 {
    min-height: 2.5rem;
}

.min-h-12 {
    min-height: 3rem;
}

.min-h-14 {
    min-height: 3.5rem; /* 56px */
}

.min-h-16 {
    min-height: 4rem; /* 64px */
}

.min-h-20 {
    min-height: 5rem; /* 80px */
}

.min-h-24 {
    min-height: 6rem; /* 96px */
}

.min-h-28 {
    min-height: 7rem; /* 112px */
}

.min-h-32 {
    min-height: 8rem; /* 128px */
}

.min-h-0 {
    min-height: 0px;
}

.min-h-full {
    min-height: 100%;
}

.min-h-screen {
    min-height: 100vh;
}

.min-h-min {
    min-height: min-content;
}

.min-h-max {
    min-height: max-content;
}

.min-h-fit {
    min-height: fit-content;
}

/*Layout: Flex*/
.flex {
    display: flex;
}

.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/*Layout: Grid*/
.grid {
    display: grid;
    max-width: 1500px !important;
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-10 {
    grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-12 {
    grid-template-columns: repeat(12, minmax(0, 1fr));
}

.grid-cols-14 {
    grid-template-columns: repeat(14, minmax(0, 1fr));
}

.grid-cols-20 {
    grid-template-columns: repeat(20, minmax(0, 1fr));
}

.grid-cols-24 {
    grid-template-columns: repeat(24, minmax(0, 1fr));
}

.grid-cols-25 {
    grid-template-columns: repeat(25, minmax(0, 1fr));
}

.col-span-2 {
    grid-column: span 2 / span 2;
}

.col-span-3 {
    grid-column: span 3 / span 3;
}

.col-span-4 {
    grid-column: span 4 / span 4;
}

.col-span-5 {
    grid-column: span 5 / span 5;
}

.col-span-6 {
    grid-column: span 6 / span 6;
}

.col-span-7 {
    grid-column: span 7 / span 7;
}

.col-span-8 {
    grid-column: span 8 / span 8;
}

.col-span-9 {
    grid-column: span 9 / span 9;
}

.col-span-10 {
    grid-column: span 10 / span 10;
}

.grid-rows-3 {
    grid-template-rows: repeat(3, minmax(0, 1fr));
}

.grid-rows-5 {
    grid-template-rows: repeat(5, minmax(0, 1fr));
}

.row-span-2 {
    grid-row: span 2 / span 2;
}

/*Gap*/
.gap-1 {
    gap: 0.25rem;
}

.gap-x-1 {
    column-gap: 0.25rem;
}

.gap-y-1 {
    row-gap: 0.25rem;
}

.gap-1_5 {
    gap: 0.375rem; /* 6px */
}

.gap-x-1_5 {
    column-gap: 0.375rem; /* 6px */
}

.gap-y-1_5 {
    row-gap: 0.375rem; /* 6px */
}

.gap-2 {
    gap: 0.5rem; /* 8px */
}

.gap-x-2 {
    column-gap: 0.5rem; /* 8px */
}

.gap-y-2 {
    row-gap: 0.5rem; /* 8px */
}

/*Border*/
.border-1_5 {
    border-width: 1.5px;
}

.rounded-full {
    border-radius: 9999px;
}

.rounded-1\2 {
    border-radius: 0.5rem;
}

.rounded-1\4 {
    border-radius: 0.25rem;
}

.rounded-3\4 {
    border-radius: 0.75rem;
}

.rounded-tr {
    border-top-right-radius: 0.25rem;
}

.rounded-tl {
    border-top-left-radius: 0.25rem;
}

.rounded-br {
    border-bottom-right-radius: 0.25rem;
}

.rounded-bl {
    border-bottom-left-radius: 0.25rem;
}

.border-black {
    border-color: rgb(0 0 0);
}

.border-blue {
    border-color: blue;
}

.border-solid {
    border-style: solid;
}

/*Shadow*/
.drop-shadow-sm {
    filter: drop-shadow(0 1px 1px rgb(0 0 0 / 0.05));
}

.drop-shadow {
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
}

.drop-shadow-md {
    filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
}

.drop-shadow-lg {
    filter: drop-shadow(0 10px 8px rgb(0 0 0 / 0.04)) drop-shadow(0 4px 3px rgb(0 0 0 / 0.1));
}

.drop-shadow-xl {
    filter: drop-shadow(0 20px 13px rgb(0 0 0 / 0.03)) drop-shadow(0 8px 5px rgb(0 0 0 / 0.08));
}

.drop-shadow-2xl {
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.drop-shadow-none {
    filter: drop-shadow(0 0 #0000);
}

/*Background*/
.bg-auto {
    background-size: auto;
}

.bg-cover {
    background-size: cover;
}

.bg-contain {
    background-size: contain;
}

.bg-white {
    background-color: white;
}

.bg-black {
    background-color: rgb(0 0 0);
}

.bg-blue {
    background-color: rgb(0 162 232);
}

.bg-aliceblue {
    background-color: aliceblue;
}

.bg-cornflowerblue {
    background-color: cornflowerblue;
}

.bg-dodgerblue {
    background-color: dodgerblue;
}

.bg-red {
    background-color: red;
}

.bg-orange {
    background-color: orange;
}

.bg-yellow {
    background-color: yellow;
}

.bg-green {
    background-color: green;
}

.bg-mediumpurple {
    background-color: mediumpurple;
}

.bg-darkcyan {
    background-color: darkcyan;
}

/*Padding*/
.p-0 {
    padding: 0px !important;
}

.p-2 {
    padding: 2px;
}

.p-4 {
    padding: 4px;
}

.p-8 {
    padding: 8px;
}

.p-16 {
    padding: 16px;
}

.p-32 {
    padding: 32px;
}

.p-64 {
    padding: 64px;
}

.px-2 {
    padding-left: 2px;
    padding-right: 2px;
}

.py-2 {
    padding-bottom: 2px;
    padding-top: 2px;
}

.px-4 {
    padding-left: 4px;
    padding-right: 4px;
}

.py-4 {
    padding-bottom: 4px;
    padding-top: 4px;
}

.px-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.py-8 {
    padding-bottom: 8px;
    padding-top: 8px;
}

.px-16 {
    padding-left: 16px;
    padding-right: 16px;
}

.py-16 {
    padding-bottom: 16px;
    padding-top: 16px;
}

.px-32 {
    padding-left: 32px;
    padding-right: 32px;
}

.py-32 {
    padding-bottom: 32px;
    padding-top: 32px;
}

.px-64 {
    padding-left: 64px;
    padding-right: 64px;
}

.py-64 {
    padding-bottom: 64px;
    padding-top: 64px;
}



/*Text Align*/
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-justify {
    text-align: justify;
}

.text-start {
    text-align: start;
}

.text-end {
    text-align: end;
}

/*Text-color*/
.text-white {
    color: white;
}

.text-black {
    color: black;
}

.text-blue {
    color: blue;
}

.text-green {
    color: green;
}

.text-gray {
    color: gray;
}

.text-yellow {
    color: yellow;
}

.text-danger {
    color: red;
}

.text-orange {
    color: orange;
}

.text-deepskyblue {
    color: deepskyblue;
}

.text-dodgerblue {
    color: dodgerblue
}

.text-danger {
    color: #ff0000
}

/*Font Weight*/
.font-thin {
    font-weight: 100;
}

.font-extralight {
    font-weight: 200;
}

.font-light {
    font-weight: 300;
}

.font-normal {
    font-weight: 400;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.font-extrabold {
    font-weight: 800;
}

.font-black {
    font-weight: 900;
}

/*Item*/
.item-center {
    align-items: center;
}

.item-baseline {
    align-items: baseline;
}

.items-start {
    align-items: flex-start;
}

.items-end {
    align-items: flex-end;
}

.self-start {
    align-self: flex-start;
}

.self-end {
    align-self: flex-end;
}

.self-center {
    align-self: center;
}

/*Justify*/
.justify-content-center {
    justify-content: center;
}

.justify-content-start {
    justify-content: start;
}

.justify-content-end {
    justify-content: end;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.justify-items-center {
    justify-items: center;
}

.justify-items-start {
    justify-items: start;
}

.justify-items-end {
    justify-items: end;
}

.justify-self-center {
    justify-self: center;
}

.justify-self-start {
    justify-self: start;
}

.justify-self-end {
    justify-self: end;
}

/*Place*/
.place-items-start {
    place-items: start;
}

.place-items-end {
    place-items: end;
}

.place-items-center {
    place-items: center;
}

.place-items-baseline {
    place-items: baseline;
}

.place-items-stretch {
    place-items: stretch;
}

/*Overflow*/
.overflow-auto {
    overflow: auto;
}

.overflow-hidden {
    overflow: hidden;
}

.overflow-clip {
    overflow: clip;
}

.overflow-visible {
    overflow: visible;
}

.overflow-scroll {
    overflow: scroll;
}

.overflow-x-auto {
    overflow-x: auto;
}

.overflow-y-auto {
    overflow-y: auto;
}

.overflow-x-hidden {
    overflow-x: hidden;
}

.overflow-y-hidden {
    overflow-y: hidden;
}

.overflow-x-clip {
    overflow-x: clip;
}

.overflow-y-clip {
    overflow-y: clip;
}

.overflow-x-visible {
    overflow-x: visible;
}

.overflow-y-visible {
    overflow-y: visible;
}

.overflow-x-scroll {
    overflow-x: scroll;
}

.overflow-y-scroll {
    overflow-y: scroll;
}

/*Font Size*/
.text-x1s {
    font-size: 0.25rem;
    line-height: 0.5rem;
}

.text-x2s {
    font-size: 0.5rem;
    line-height: 0.75rem;
}

.text-x3s {
    font-size: 0.625rem;
    line-height: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

.text-8xl {
    font-size: 6rem;
    line-height: 1;
}

.text-9xl {
    font-size: 8rem;
    line-height: 1;
}

/*Cursor*/
.cursor-pointer {
    cursor: pointer;
}

.cursor-default {
    cursor: default;
}

/*Position*/
.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.sticky {
    position: sticky;
}

/*Transition Duration*/
duration-0 {
    transition-duration: 0s;
}

duration-75 {
    transition-duration: 75ms;
}

duration-100 {
    transition-duration: 100ms;
}

duration-150 {
    transition-duration: 150ms;
}

duration-200 {
    transition-duration: 200ms;
}

duration-300 {
    transition-duration: 300ms;
}

duration-500 {
    transition-duration: 500ms;
}

duration-700 {
    transition-duration: 700ms;
}

duration-1000 {
    transition-duration: 1000ms;
}

/*Underline*/
.no-underline {
    text-decoration: none !important;
}

/*Shape*/
/*Status line*/
.status-line-active {
    width: 70px;
    height: 20px;
    background-color: lawngreen;
    color: white;
    margin: 0px;
    border-radius: 4px;
    animation-name: change-bg-active;
    animation-duration: 1.5s;
    animation-iteration-count: 10000000;
}

.status-line-nonactive {
    width: 70px;
    height: 20px;
    background-color: orangered;
    color: white;
    margin: 0px;
    border-radius: 4px;
    animation-name: change-bg-nonactive;
    animation-duration: 1.5s;
    animation-iteration-count: 10000000;
}

/*Icon*/
.i-detail {
    text-decoration: none;
    color: deepskyblue !important;
    font-size: 18px;
    margin-right: 2px;
    cursor: pointer;
}

    .i-detail:hover {
        text-decoration: none;
        color: blue !important;
        font-size: 18px;
        margin-right: 2px
    }

.i-done {
    color: #71dd37 !important;
    text-decoration: none;
    font-size: 18px;
    margin-right: 2px;
    cursor: pointer;
}

    .i-done:hover {
        text-decoration: none;
        color: #71dd379e !important;
        font-size: 18px;
        margin-right: 2px
    }

.i-edit {
    color: #E6E44C !important;
    text-decoration: none;
    font-size: 18px;
    margin-right: 2px;
    cursor: pointer;
}

    .i-edit:hover {
        text-decoration: none;
        color: khaki !important;
        font-size: 18px;
        margin-right: 2px
    }

.i-remove {
    text-decoration: none;
    color: red !important;
    font-size: 18px;
    margin-right: 2px;
    cursor: pointer;
}

    .i-remove:hover {
        text-decoration: none;
        color: orange !important;
        font-size: 18px;
        margin-right: 2px
    }

.i-sort {
    color: white;
    font-size: 12px;
    padding: 2px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.i-publish {
    color: slateblue;
    font-size: 18px;
    padding: 2px;
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

    .i-publish:hover {
        color: darkviolet;
    }

/*Form*/
.div-input-slide {
    max-width: 1100px;
    width: 100%;
    margin: 10px 0px;
    text-align: start;
    padding: 0px 10px;
}

.form-input-slide {
    width: 95%;
    padding: 10px 10px;
    font-weight: 600;
    color: #1874CD;
    background: #efefef;
    border: 0;
    border-radius: 3px;
    outline: 0;
    transition: all .3s ease-in-out;
}

.form-area-slide {
    width: calc(100%);
    height: 200px;
    padding: 10px 10px;
    font-weight: 600;
    color: #1874CD;
    background: #efefef;
    border: 0;
    border-radius: 3px;
    outline: 0;
    transition: all .3s ease-in-out;
}

.label-input-slide {
    display: inline-block;
    top: 0;
    left: 0;
    padding: 10px 15px;
    color: white;
    text-shadow: 0 1px 0 rgba(19,74,70,.4);
    background: #00BFFF;
    font-weight: 600;
    transition: all .3s ease-in-out;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
}

.form-input-slide:focus,
.form-input-slide:active {
    color: #00B3F2 !important;
    text-indent: 10px;
    background: #efefef;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

    .form-input-slide:focus,
    .form-input-slide:active.label-input-slide {
        width: 100%;
        margin-top: 5px;
    }

.form-area-slide:focus {
}

.isrequired::after {
    content: " (*)";
    color: red;
}

[type="date"]::-webkit-calendar-picker-indicator {
    width: 30px;
    height: 20px;
    color: #00B3F2;
}



.form-select {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    outline: none;
    padding: 6px 12px;
    flex: 1;
    height: 36px;
    transition: .15s opacity cubic-bezier(.4,0,.2,1);
    min-width: 0;
    background-color: transparent;
    border-radius: 6px;
    border: 1.2px solid #22303e1f;
    font-size: 15px;
    width: 100%
}

    .form-select:focus {
        border: 2px solid #69bdff;
        padding-left: 15px
    }

    .form-select option {
        background-color: transparent;
        border-radius: 0
    }

    .form-select::-ms-expand {
        display: none;
    }

.select2-dropdown {
    border: 1.2px solid #22303e1f !important;
    border-top: none !important;
}

.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

    .input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

/*Badge*/
.badge {
    border-radius: .25rem;
    padding: 7px
}

.badge-secondary {
    color: #717171 !important;
    background: rgb(113, 113, 113, 0.16);
}

.badge-primary {
    color: #46a9e4 !important;
    background: rgb(105, 189, 255, 0.16);
}

.badge-info {
    color: #696cff !important;
    background: rgb(105, 108, 255, 0.16);
}

.badge-warning {
    color: #ffab00 !important;
    background: rgb(255, 171, 0, 0.16);
}

.badge-danger {
    color: #f86047 !important;
    background: rgb(248, 96, 71, 0.16);
}

/*Badge Wrapper*/
.badge-wrapper {
    position: relative;
    width: fit-content
}

    .badge-wrapper .badge-dot {
        position: absolute;
        bottom: calc(100% - 10px);
        left: calc(100% - 10px);
        align-items: center;
        display: inline-flex;
        border-radius: 12px;
        font-size: 10px;
        font-weight: 500;
        justify-content: center;
        min-width: 20px;
        pointer-events: auto;
        position: absolute;
        text-align: center;
        text-indent: 0;
        transition: .225s cubic-bezier(.4,0,.2,1);
        white-space: nowrap;
        background-color: red;
        color: white
    }

/*Button href*/
.btn {
    font-weight: 500;
    text-transform: capitalize;
    border-radius: 6px;
}

    .btn:focus {
        outline: 0px auto black;
        outline-color: black;
        outline-style: auto;
        outline-width: 0px;
        outline-offset: 0px;
    }

    .btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
        outline: 0px auto black;
        outline-color: black;
    }

.btn-secondary {
    background-color: #a9a9a9a9;
    box-shadow: 0 2px 4px #a9a9a945;
}

.btn-primary {
    background-color: rgba(12, 86, 222, 1);
}

    .btn-primary:hover, .btn-primary:active, .btn-primary:focus {
        background-color: #90ceff;
        border-color: #90ceff;
        box-shadow: 0 2px 4px #90ceffa8;
    }

        .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover, .open > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
            background-color: #90ceff;
            border-color: #90ceff;
        }

.btn-success {
    background-color: #71dd37;
    border-color: #71dd37;
    box-shadow: 0 2px 4px #71dd3766;
}

    .btn-success:hover, .btn-success:active, .btn-success:focus {
        background-color: #66c732;
        border-color: #66c732;
    }

        .btn-success.active.focus, .btn-success.active:focus, .btn-success.active:hover, .btn-success:active.focus, .btn-success:active:focus, .btn-success:active:hover, .open > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success:hover {
            background-color: #66c732;
            border-color: #66c732;
        }

.btn-danger {
    background-color: #f86047fa;
    border-color: #f86047fa;
    box-shadow: 0 2px 4px #f86047b0;
}

    .btn-danger:hover, .btn-danger:active, .btn-danger:focus {
        background-color: #f84747;
        border-color: #f84747b0
    }

        .btn-danger.active.focus, .btn-danger.active:focus, .btn-danger.active:hover, .btn-danger:active.focus, .btn-danger:active:focus, .btn-danger:active:hover, .open > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger:hover {
            background-color: #f84747;
            border-color: #f84747b0
        }

.btn-warning {
    background-color: #ffc44b;
    border-color: #ffc44b;
    box-shadow: 0 2px 4px #ffc44b66;
}

    .btn-warning:hover, .btn-warning:active, .btn-warning:focus {
        background-color: #ffab00;
        border-color: #ffab00;
        box-shadow: 0 2px 4px #ffab0066;
    }

        .btn-warning.active.focus, .btn-warning.active:focus, .btn-warning.active:hover, .btn-warning:active.focus, .btn-warning:active:focus, .btn-warning:active:hover, .open > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning:hover {
            background-color: #ffab00;
            border-color: #ffab00;
        }

.btn-info {
    background-color: #696cff;
    border-color: #696cff;
    box-shadow: 0 2px 4px #696cff66;
}

    .btn-info:hover, .btn-info:active, .btn-info:focus {
        background-color: #6983ff;
        border-color: #6983ff;
        box-shadow: 0 2px 4px #6983ff66;
    }

        .btn-info.active.focus, .btn-info.active:focus, .btn-info.active:hover, .btn-info:active.focus, .btn-info:active:focus, .btn-info:active:hover, .open > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info:hover {
            background-color: #6983ff;
            border-color: #6983ff;
        }

.btn-dark {
    background-color: #444444;
    border-color: #444444;
    box-shadow: 0 2px 4px #444444a8;
}

    .btn-dark:hover, .btn-dark:active, .btn-dark:focus {
        background-color: #606060;
        border-color: #606060;
        box-shadow: 0 2px 4px #606060a8;
    }

        .btn-dark.active.focus, .btn-dark.active:focus, .btn-dark.active:hover, .btn-dark:active.focus, .btn-dark:active:focus, .btn-dark:active:hover, .open > .dropdown-toggle.btn-dark.focus, .open > .dropdown-toggle.btn-dark:focus, .open > .dropdown-toggle.btn-dark:hover {
            background-color: #606060;
            border-color: #606060;
        }


.btn-create {
    background-color: rgb(0 162 232);
    cursor: pointer;
    color: white !important;
    border-radius: 16px;
    border: rgb(0 162 232);
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 20px;
    padding-left: 20px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
}

    .btn-create:hover {
        background-color: turquoise;
        text-decoration: none;
        color: white;
    }

.btn-submit {
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    background-color: greenyellow !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

    .btn-submit:hover {
        opacity: 0.8;
    }

.btn-edit {
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    background-color: #CCCA44 !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-edit:hover {
        opacity: 0.8;
    }

.btn-cancel {
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: black !important;
    background-color: ghostwhite !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-cancel:hover {
        text-decoration: none !important;
        opacity: 0.8;
    }

.btn-filter {
    color: deepskyblue;
    background-color: transparent;
    padding: 12px;
    font-size: 12px;
    border: none;
    outline: none;
}

    .btn-filter i {
        color: deepskyblue;
    }

    .btn-filter:hover i {
        color: blue;
    }

.btn-reject {
    margin-top: 10px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    font-weight: 600;
    color: white !important;
    background-color: red !important;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}

    .btn-reject:hover {
        text-decoration: none !important;
        opacity: 0.8;
    }

.btn-post {
    background-color: rgb(0 162 232);
    cursor: pointer;
    color: white !important;
    border-radius: 16px;
    border: rgb(0 162 232);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
}

    .btn-post:hover {
        background-color: turquoise;
        text-decoration: none;
        color: white;
    }

.btn-resend {
    background-color: coral;
    cursor: pointer;
    color: white !important;
    border-radius: 16px;
    border: rgb(0 162 232);
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 20px;
}

    .btn-resend:hover {
        background-color: antiquewhite;
        text-decoration: none;
        color: white;
    }

.btn-export {
    background-color: darkseagreen;
    cursor: pointer;
    color: white !important;
    border-radius: 16px;
    border-color: greenyellow;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 10px;
    padding-left: 10px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 10px;
}

    .btn-export:hover {
        background-color: cadetblue;
        text-decoration: none;
        color: white;
    }

/*Tilte*/
/*.title {
    font-size: 20px;
    font-weight: 600;
    color: black;
}*/
/*
.title-view {
    font-size: 18px;
    font-weight: 600;
    color: black;
    border-bottom: solid 2px rgb(0 162 232); 
    padding: 5px 0px;
}*/

/*Row-hidden*/
.rows-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-4 {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-5 {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-6 {
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-7 {
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-8 {
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.rows-9 {
    display: -webkit-box;
    -webkit-line-clamp: 9;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/*Select2*/
.select2-container .select2-selection--single {
    height: 39px !important;
    padding: 6px 12px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 39px !important;
}

.select2-container--default .select2-selection--single {
    border: 1.2px solid #22303e1f !important;
    transition: .15s opacity cubic-bezier(.4,0,.2,1);
    font-size: 15px;
    border-radius: 6px !important;
}

    .select2-container--default .select2-selection--single:focus {
        border: 1px solid #69bdff !important;
    }

.select2-search .select2-search--inline {
    font-size: 15px
}

.select2-container .select2-selection--multiple {
    min-height: 39px !important;
    padding: 6px 12px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    margin-bottom: 5px
}

.select2-container--default .select2-selection--multiple {
    border: 1.2px solid #22303e1f !important;
}

.select2-container--default.select2-container--focus .select2-selection--multiple {
    border: 1px solid #69bdff !important;
}

.select2-container .select2-search--inline .select2-search__field {
    font-size: 15px !important
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border-right: 0px !important;
    background-color: #999 !important;
    color: white !important
}

.select2-selection__rendered .select2-selection__choice {
    background-color: #F1F2F3 !important;
    border: none !important;
    font-size: 14px !important;
    padding: 5px
}

/*Search Form*/
.search-form {
    position: relative;
    width: fit-content;
    height: fit-content;
    background-color: white;
    border: 2px solid;
    border-color: deepskyblue;
    border-radius: 0.6rem;
    padding: 2px;
}

    .search-form .i-search:focus {
        margin-top: 0px;
    }

.i-search {
    position: absolute;
    left: 0px;
    top: 3px;
    height: 30px;
    width: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    border: white;
    border-radius: 1rem;
}

.input-search {
    height: 30px;
    width: 170px;
    background-color: white;
    display: block;
    font-size: 12px;
    padding-left: 34px;
    color: black;
    border: white;
    border-radius: 1rem;
    transition: all 0.5s ease-in-out;
}

    .input-search:focus {
        width: 200px;
        margin-top: 0px;
        color: black;
        border: white;
        border-radius: 1rem;
        outline: none;
        font-size: 12px;
    }

.lbl-search {
    color: rgb(0 162 232);
    font-size: 14px;
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 6px;
}

.dropdownlist-search {
    width: 100%;
    height: 40px;
    border-radius: 5px;
    background-color: rgb(232, 240, 254);
    color: black;
    font-weight: 600;
    font-size: 13px;
    border: none;
    padding: 6px;
}

    .dropdownlist-search:focus-visible {
        border: none;
        outline: none;
    }

.btn-search {
    width: 100px;
    height: 40px;
    background-color: lawngreen;
    color: white;
    font-weight: 600;
    font-size: 16px;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
}

.filter-box {
    transition: all .6s ease-in-out;
}

    .filter-box:active {
        height: 4rem;
        width: 100%;
    }

/*Paging*/
.a_i {
    color: white !important;
    font-size: 15px;
    cursor: pointer;
    padding: 12px 10px;
    font-weight: 600;
    background-color: transparent;
    outline: none;
    border: none;
}

.a_i_select {
    color: white !important;
    font-size: 15px;
    cursor: pointer;
    padding: 12px 10px;
    font-weight: 600;
    background-color: #2e6da4;
    outline: none;
    border: none;
}

.a_next_previous {
    color: white !important;
    font-size: 15px;
    cursor: pointer;
    padding: 12px 8px;
    font-weight: 600;
    background-color: transparent;
    outline: none;
    border: none;
    opacity: 0.9;
}

.a_first_last {
    color: white !important;
    font-size: 15px;
    cursor: pointer;
    padding: 12px 8px;
    font-weight: 600;
    background-color: transparent;
    outline: none;
    border: none;
    opacity: 0.8;
}

#questions-container {
}

    #questions-container .question-form {
        border: 1px black dashed;
        padding: 10px
    }

/*Page*/
.pagination {
}

    .pagination .page-item {
    }

        .pagination .page-item .page-link {
            color: rgb(34 48 62 / 90%);
            background-color: #ebecee73;
            margin: 2px;
            border-radius: 10px;
            font-weight: 400;
            line-height: 1;
            width: 38px;
            height: 38px;
            padding: 6px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 13px;
            border: none
        }

        .pagination .page-item.disabled {
            opacity: .45;
            cursor: default
        }

        .pagination .page-item.active .page-link {
            background-color: #69bdff4f;
            color: #69bdff;
            font-weight: 600;
        }

            .pagination .page-item.active .page-link:hover {
                background-color: #69bdff7d;
            }

        .pagination .page-item .page-link:hover {
            background-color: #EBECEE;
        }

/*Page Size*/
.dropdownlist-pagesize {
    width: 50px;
    height: 40px;
    border-radius: 5px;
    background-color: #337ab7;
    color: white;
    font-weight: 600;
    font-size: 13px;
    border: none;
    padding: 6px;
}

    .dropdownlist-pagesize:focus-visible {
        border: none;
        outline: none;
    }

/*Dialog*/
.dialog {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.2); /* Black w/ opacity */
}

.content-dialog {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */
}

.area-notice {
    width: 100%;
    height: 250px;
    outline: none;
    border: gray 1.5px solid;
    border-radius: 1px;
}

/*List*/
.list-view {
    width: 100%;
    height: 100%;
    background-color: white;
    transition: all .3s ease-in-out;
    border-bottom: 1.5px aliceblue solid;
}

    .list-view:hover {
    }

.list-table {
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
}

    .list-table:hover {
    }

/*Table*/
.table-list {
    border: 2px solid;
    border-color: dodgerblue;
    padding: 4px;
    width: 100%;
    height: auto;
}

table img {
    border-radius: 10px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

    table img.icon {
        border-radius: 0px;
    }

/*Sort Icon*/
table .sort {
    cursor: pointer
}

table .sort .sort-icon {
    font-size: 11px
}

/*Date*/
.wrapper-date {
    position: relative;
}

    .wrapper-date .icon {
        position: absolute;
        right: 10px;
        top: 60%;
        transform: translateY(-50%);
        pointer-events: none;
    }

        .wrapper-date .icon svg {
            width: 20px;
            height: 20px;
            fill: gray;
        }


.flatpickr-calendar {
    width: 330px !important;
}

.flatpickr-innerContainer {
    justify-content: center;
}

/*File*/
.choose-file {
    position: absolute;
    top: 5px;
    left: 10px;
    background-color: dodgerblue;
    width: 90px;
    height: 30px;
    color: white;
    text-align: center;
    padding: 5px;
    border-radius: 4px;
}

.file-input {
    width: 100%;
    padding: 10px 10px;
    padding-left: 105px;
    font-weight: 600;
    color: #1874CD;
    background: #efefef;
    border: 0;
    border-radius: 3px;
    outline: 0;
    transition: all .3s ease-in-out;
}

/*Notification*/
.alert {
    width: 300px;
    padding: 16px;
    margin: 8px;
    max-width: 90%;
    position: absolute;
    right: 0px;
    top: 0px;
    z-index: 1;
}

.alert-title {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.alert-content {
    margin: 0;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
    color: #555555;
}

.alert-success {
    border-left: 4px solid green;
    background-color: rgba(220, 255, 200, 1);
    animation-name: alert-animation-success;
    animation-duration: 5s;
    animation-fill-mode: both;
}

    .alert-success .alert-title {
        color: green;
    }

.alert-warning {
    border-left: 4px solid gold;
    background-color: rgba(250, 255, 200, 1);
    animation-name: alert-animation-warning;
    animation-duration: 5s;
    animation-fill-mode: both;
}

    .alert-warning .alert-title {
        color: gold;
    }

.alert-danger {
    border-left: 4px solid crimson;
    background-color: rgba(255, 200, 200, 1);
    animation-name: alert-animation-danger;
    animation-duration: 5s;
    animation-fill-mode: both;
}

    .alert-danger .alert-title {
        color: crimson;
    }

.alert-info {
    border-left: 4px solid blue;
    background-color: rgba(225, 250, 255, 1);
    animation-name: alert-animation-info;
    animation-duration: 5s;
    animation-fill-mode: both;
}

    .alert-info .alert-title {
        color: blue;
    }

/*Component dialog*/
.component-dialog {
    width: 100%;
    height: auto;
}

/*Search Header*/
.a-header {
    color: white !important;
    text-decoration: none;
}

    .a-header:hover {
        color: white;
        font-weight: 600;
        text-decoration-thickness: 2px;
        text-decoration: underline;
        text-underline-offset: 0.6em;
        text-decoration-color: #FFB700;
    }

.header-selected {
    color: white !important;
    font-weight: 600;
    text-decoration-thickness: 2px;
    text-decoration: underline !important;
    text-underline-offset: 0.6em;
    text-decoration-color: #FFB700 !important;
}

/*News*/
.title-main-news {
    font-size: 24px;
    font-weight: 700;
    color: black;
    margin-bottom: 15px;
    font-family: 'Merriweather';
    line-height: 160%;
}

.title-news {
    font-size: 14px;
    font-weight: 600;
    color: black;
    margin-bottom: 10px;
}

.date-news {
    color: #515158;
    font-size: 12px;
    margin-bottom: 10px;
    font-weight: 500;
}

.content-news {
    color: #27272A;
    font-size: 14px;
}

/*Register*/
.box-register {
    background: linear-gradient(276.59deg, #3878FF 35.92%, #0A5DE2 109.28%);
    border-radius: 10.6875px;
    position: relative;
    width: 855px;
    height: 160px;
}

.title-register {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 25.3828px;
    line-height: 100%;
    color: #FFFFFF;
    padding-bottom: 10px
}

.content-register {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    font-size: 13.0234px;
    line-height: 150%;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    width: 400px;
    padding-bottom: 10px
}

.btn-register {
    padding: 5px 15px;
    background: #FFBB37;
    border-radius: 3.8543px;
    color: black;
    text-decoration: none;
    cursor: pointer;
    font-weight: 600
}

    .btn-register:hover {
        color: black;
        text-decoration: none;
        cursor: pointer;
        font-weight: 600
    }

.modal-title2 {
    display: flex;
    flex-direction: row;
    justify-content: left;
    margin-bottom: 10px;
    border-bottom: 1px rgb(0 0 0 / 0.06) solid;
}

    .modal-title2 img {
        width: 20px;
        height: 20px;
        margin-top: 5px;
    }

    .modal-title2 p {
        font-size: 20px;
        font-weight: 600;
        color: white;
        margin: 0px 10px;
    }

    .modal-title2 button {
    }

.slider-text {
    width: 100%;
    height: 158px;
    bottom: 0px;
    background: linear-gradient(180deg, #000000 -70.01%, rgba(0, 0, 0, 0) 110.44%);
    transform: rotate(-180deg);
}

/**/
.mySlides {
    display: none
}

.img-slide {
    vertical-align: middle;
}

/*TypeAhead*/
.typeahead {
    list-style-type: none !important;
    margin: 0px !important;
    box-shadow: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

    .typeahead li {
        list-style-type: none !important
    }

/* Slideshow container */
.slideshow-container {
    max-width: 1000px;
    position: relative;
    margin: auto;
}

/* Next & previous buttons */
/*.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}*/

/* Position the "next button" to the right */
/*.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}*/

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover, .next:hover {
        background-color: rgba(0,0,0,0.8);
    }*/

/* Caption text */
.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

/*.active, .dot:hover {
        background-color: #717171;
    }*/
/* Fading animation */
/*.fade {
    animation-name: fade;
    animation-duration: 3s;
}*/
/*Danh s�ch*/
.show-list {
}

    .show-list h2 {
        font-size: 1.2rem;
        color: #002D3D;
    }

.detail-list {
    padding: 5px;
    cursor: pointer;
    color: #002D3D;
}

    .detail-list:hover {
        text-decoration: none;
        color: #002D3D;
    }

    .detail-list h3 {
        font-size: 1rem;
        color: #002D3D;
    }

    .detail-list span {
        color: grey;
        font-size: 15px
    }

    .detail-list p {
    }




.detail-container {
    display: flex;
}

    .list-same h3 {
        color: #00569d;
        font: bold 18px arial;
        border-bottom: 1px #00569d solid;
        padding-bottom: 5px
    }

    .list-same a {
        color: inherit;
        text-decoration: none !important;
    }

    .list-same img {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 10px;
        margin-bottom: 10px;
        box-shadow: 0 1px 6px 1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    }

    .list-same h4 {
        font-family: "Merriweather",serif;
        font-size: 14px;
        line-height: 160%;
    }

.themeNews {
}

    .themeNews img {
        object-fit: cover;
        width: 150px;
        height: 80px;
    }

    .themeNews h3 {
        font-family: Inter;
        font-size: 12px;
        font-weight: 600;
        line-height: 18px;
        letter-spacing: 0em;
        text-align: left;
        margin: 0px;
        padding-top: 15px;
        padding-right: 5px
    }

    .themeNews h2 {
        font-family: Inter;
        font-size: 24px;
        font-weight: 600;
        line-height: 32px;
        letter-spacing: 0em;
        text-align: left;
        margin: 0px;
        padding-top: 15px;
        padding-right: 5px
    }

    .themeNews p {
        color: gray;
        font-family: Inter;
        font-size: 12px;
        font-weight: 500;
        line-height: 18px;
        letter-spacing: 0em;
        text-align: left;
    }

.banner-slide-list {
    /*padding: 20px 80px;*/
}

    .banner-slide-list img {
        border: 0.5px solid #00B4F5;
        width: 400px;
        height: 100px !important;
        object-fit: fill
    }

.art-hotnews-list {
    font-family: Inter;
    letter-spacing: 0em;
    text-align: left;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .art-hotnews-list a {
        color: #000000;
    }

        .art-hotnews-list a:hover > .icon {
            text-decoration: none !important
        }

        .art-hotnews-list a .icon {
            background-color: red;
            border-radius: 4px;
            font-size: 9px;
            color: white;
            padding: 3px 5px;
            font-weight: 600;
            margin-right: 5px
        }

    .art-hotnews-list p {
        font-size: 13px;
        font-weight: 600;
        line-height: 160%;
        margin: 0px;
        font-family: 'Merriweather';
    }

    .art-hotnews-list span {
        color: #515158;
        font-size: 10px;
        font-weight: 500;
        line-height: 16px;
    }

.first-contact-home {
    font-family: Inter;
    letter-spacing: 0em;
    text-align: left;
    height: 400px;
}

    .first-contact-home h1 {
        font-size: 21px;
        font-weight: 700;
        line-height: 35px;
        color: white;
    }

    .first-contact-home p {
        font-size: 13px;
        font-weight: 500;
        line-height: 21px;
        color: white
    }

    .first-contact-home a {
        cursor: pointer;
        position: absolute;
        background: #00B4F5;
        color: white;
        position: absolute;
        bottom: 40px;
        padding: 3px 12px;
        font-size: 30px;
    }

.item-contact-home {
    font-family: Inter;
    letter-spacing: 0em;
    text-align: left;
    height: 400px;
    position: relative;
    padding: 0px
}

    .item-contact-home .item {
        bottom: 10px;
        left: 10px;
        position: absolute;
        margin: 0px 10px;
    }

    .item-contact-home .bg {
        background: linear-gradient(0deg, #000000 34.38%, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        height: 100%;
    }

    .item-contact-home h1 {
        color: white;
        font-size: 18px;
        line-height: 27px;
        margin-top: 25px
    }

    .item-contact-home p {
        color: #33C9FF;
        font-size: 14px;
        line-height: 21px;
        margin-bottom: 35px;
    }

    .item-contact-home .con {
        margin: 10px 0px;
    }

        .item-contact-home .con i {
            color: #33C9FF;
            font-size: 14px;
            line-height: 21px;
            padding: 1px
        }

    .item-contact-home span {
        color: white;
        font-size: 13px;
        line-height: 21px;
        margin-left: 10px;
        z-index: 1
    }

.bg-tran-header {
    background: linear-gradient(90deg, #000000 -25%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 85px;
    position: absolute;
    top: 0px
}

/*.introduction-home {
    padding: 20px;
    background: black;
    width: 100%;
    margin: 10px 0px;
}

    .introduction-home .txt {
        background-color: #1A1B1F;
        height: 100%;
        border-top-right-radius: 20px;
        border-bottom-right-radius: 10px;
    }

    .introduction-home .bg {
        background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
        width: 100%;
        height: 100%;
    }

    .introduction-home p {
        font-family: Inter;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: white;
        padding: 20px 25px;
        margin: 0px;
        text-align: justify;
    }

    .introduction-home .con {
        background-color: #1B1E27;
        height: 50px;
        border-top-right-radius: 10px;
    }

    .introduction-home h2 {
        color: white;
        font-size: 100px;
        cursor: pointer;
    }

    .introduction-home .video {
        z-index: 10;
    }

        .introduction-home .video a {
            color: white;
            font-size: 80px;
            text-decoration: none;
        }

    .introduction-home h3 {
        color: white;
        position: absolute;
        bottom: 20px;
        font-size: 20px;
        width: 450px;
        left: 20px;
        z-index: 10;
    }

    .introduction-home h1 {
        color: #00B4F5;
        font-family: Inter;
        font-size: 20px;
        font-weight: 700;
        line-height: 18px;
        margin: 0px;
    }*/

.type-p-home {
    position: relative;
    width: 100%;
    height: 60px;
    border-radius: 15px;
    font-family: Inter;
    margin-bottom: 10px;
    cursor: pointer;
}

    .type-p-home .bg {
        background: #000000B2;
        width: 100%;
        height: 100%;
        border-radius: 15px
    }

    .type-p-home p {
        margin: 0px;
        color: white;
        font-size: 15px;
        font-weight: 600;
        line-height: 23px;
    }

    .type-p-home i {
        margin: 0px;
        color: white;
        font-size: 15px;
        font-weight: 600;
        line-height: 23px;
        padding-left: 10px
    }

.faq-home h1 {
    color: #00698F;
    font-family: Merriweather;
    font-size: 32px;
    font-weight: 700;
}

.faq-home .con {
    cursor: pointer;
    height: 100px;
    width: 100%;
    background-color: #F9F9F9;
    display: flex;
    flex-direction: row;
    justify-items: center;
    align-items: center;
    border-radius: 5px
}

.faq-home p {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0px;
    padding: 10px;
}

.faq-home .answer {
    white-space: pre-line;
    background-color: #e9e9e917;
    word-break: break-word;
    border: 2px dashed #ddd;
    border-top: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    padding: 15px;
    text-align: justify
}

.faq-home .item {
    line-height: 35px
}

.faq-home i {
    margin: 10px 0px 0px;
    font-size: 15px;
}

.slide-media-video-col .row {
    display: flex;
    flex-wrap: wrap;
}

    .slide-media-video-col .item {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        background-color: #0072ff12;
        box-shadow: 0 1px 6px 1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
        margin-bottom: 15px;
        width: 100%;
    }

        .slide-media-video-col .item a {
            color: #464646;
            /*text-shadow: 0px 4px 4px #000;*/
            font-size: 16px;
            line-height: 150%;
            font-weight: 700;
        }

        .slide-media-video-col .item .mark {
            padding: 20px
        }

            .slide-media-video-col .item .mark span {
                color: white;
                font-size: 13px;
                color: #787878;
            }

        .slide-media-video-col .item iframe {
            width: 100%;
            height: 195px !important
        }

        .slide-media-video-col .item .video-js {
            width: 100%;
            height: 200px !important
        }

.slide-media-image-grid-search {
}

    .slide-media-image-grid-search .layout {
        padding: 40px 80px;
        background-color: rgba(26, 27, 31, 0.87);
        width: 100%;
        height: 100%;
    }

    .slide-media-image-grid-search .item {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        width: 100%;
        height: 215px;
        margin-bottom: 15px;
    }

        .slide-media-image-grid-search .item .mark {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            padding: 15px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40%, #000 124%);
        }

        .slide-media-image-grid-search .item a {
            font-family: Merriweather;
            color: #FFF;
            text-shadow: 0px 4px 4px #000;
            font-size: 16px;
            line-height: 25.6px;
            font-weight: 700;
        }

        .slide-media-image-grid-search .item span {
            color: rgba(0, 180, 245, 1);
            font-size: 11.39px;
            line-height: 17.09px;
            font-weight: 500;
        }

        .slide-media-image-grid-search .item img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }

.slide-media-image-grid {
    /*background-image: url(/portals/0/Images/bg-media.png);*/
    background-size: cover;
}

    .slide-media-image-grid .layout {
        /*padding: 40px 80px;*/
        /*background-color: rgba(26, 27, 31, 0.87);*/
        width: 100%;
        height: 100%;
    }

    .slide-media-image-grid .item {
        position: relative;
        border-radius: 5px;
        overflow: hidden;
        width: 100%;
        height: 271px;
    }

        .slide-media-image-grid .item a {
            font-family: Merriweather;
            color: #FFF;
            text-shadow: 0px 4px 4px #000;
            font-size: 16px;
            line-height: 25.6px;
            font-weight: 700;
        }

        .slide-media-image-grid .item span {
            color: rgba(0, 180, 245, 1);
            font-size: 11.39px;
            line-height: 17.09px;
            font-weight: 500;
        }

        .slide-media-image-grid .item img {
            width: 100%;
            height: 100%;
            object-fit: cover
        }


.category-news {
}

    .category-news .title {
        border-bottom: 1.6px solid #E5E5E5;
        padding-bottom: 16px;
    }

        .category-news .title h1 {
            font-family: Inter;
            font-size: 24px;
            font-weight: 600;
            line-height: 30px;
            letter-spacing: 0em;
            text-align: left;
            color: #626262;
            margin: 0px;
        }

        .category-news .title .col-md-4 {
            padding: 0px
        }

    .category-news .result {
        display: flex;
        flex-direction: row;
        margin-top: 10px;
        margin-bottom: 10px
    }

        .category-news .result h2 {
            margin-right: 10px
        }

.quy-trinh-dangky-dautu {
}

    .quy-trinh-dangky-dautu .img-container {
        text-align: center
    }

.title-project {
    border-bottom: 1px solid #DDD;
    padding-bottom: 10px;
}

    .title-project .title {
        color: #626262;
        text-align: center;
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 20px */
    }

    .title-project .back {
        text-decoration: none;
        margin-right: 5px;
        color: black;
        cursor: pointer;
    }



.table-project {
}

    .table-project .name {
        padding: 0px;
        margin: 15px 0px;
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%; /* 36px */
    }

    .table-project .title {
        margin: 10px;
        font-size: 16px;
        font-family: 'Inter';
        line-height: 18px;
        color: #62748D;
        font-weight: 500;
    }

    .table-project table {
        border: 1px solid black;
    }

        .table-project table tr td:first-child {
            background: #F9F9F9;
            border: 1px solid #E9E9E9;
            box-sizing: border-box;
            font-weight: 500;
            font-size: 14px;
            line-height: 18px;
            color: #62748D;
            vertical-align: middle;
            width: 140px;
            padding: 10px
        }

        .table-project table tr td:nth-child(2) {
            padding: 10px;
            border: 1px solid #E9E9E9;
        }

    .table-project .footer p {
        font-size: 14px;
        font-family: 'Inter';
        line-height: 18px;
        margin: 5px 0px;
    }

/*Search in Menu*/
.menu-search-form {
    position: relative;
    width: fit-content;
    height: fit-content;
    border-radius: 0.2rem;
    padding: 2px;
}

    .menu-search-form .i-search:focus {
        margin-top: 0px;
    }

.menu-i-search {
    position: absolute;
    left: 5px;
    top: 7px;
    height: 30px;
    width: 35px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    color: black;
    border: white;
    border-radius: 1rem;
}

.menu-input-search {
    margin-top: 4px;
    height: 32px;
    width: 230px;
    background-color: white;
    display: block;
    font-size: 12px;
    padding-left: 40px;
    color: black;
    border: white;
    border-radius: 0.2rem;
    transition: all 0.5s ease-in-out;
}

    .menu-input-search:focus {
        color: black;
        border: white;
        outline: none;
        font-size: 12px;
    }

.list-view-detail {
}

    .list-view-detail .breadcrumb {
        padding: 0px;
        margin-bottom: 0px;
        list-style: none;
        background-color: #fff;
    }

        .list-view-detail .breadcrumb .active a {
            color: #419ef6 !important
        }

    .list-view-detail ol li {
        font-size: 13px;
        color: grey
    }

        .list-view-detail ol li a {
            font-size: 13px;
            color: grey
        }

.enterprise-detail {
    font-family: Inter;
}

    .enterprise-detail .breadcrumb {
        padding: 0px;
        margin-bottom: 0px;
        list-style: none;
        background-color: #fff;
    }

        .enterprise-detail .breadcrumb .active a {
            color: #419ef6 !important
        }

    .enterprise-detail ol li {
        font-size: 13px;
        color: grey
    }

        .enterprise-detail ol li a {
            font-size: 13px;
            color: grey
        }

    .enterprise-detail h1 {
        padding: 0px;
        margin: 15px 0px;
        color: #000;
        font-family: Inter;
        font-size: 24px;
        font-style: normal;
        font-weight: 500;
        line-height: 100%;
    }

    .enterprise-detail .content p {
        color: #27272A;
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%; /* 21px */
        margin-bottom: 30px
    }

#gmp-map {
    width: 100%;
    height: 220px
}

.table-enterprise {
}

    .table-enterprise p {
        margin: 10px;
        font-size: 16px;
        font-family: 'Inter';
        line-height: 18px;
        color: #62748D;
        font-weight: 500;
    }

    .table-enterprise table {
        border: 1px solid black;
        width: 100%
    }

        .table-enterprise table tr td img {
            width: 228px;
            height: auto;
            object-fit: cover
        }

        .table-enterprise table tr td:first-child {
            background: #F5F8FF;
            border: 1px solid #E9E9E9;
            box-sizing: border-box;
            font-weight: 500;
            font-size: 14px;
            line-height: 18px;
            color: #62748D;
            vertical-align: middle;
            width: 140px;
            padding: 10px
        }

        .table-enterprise table tr td:nth-child(2) {
            padding: 10px;
            border: 1px solid #E9E9E9;
        }

.calendar-body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
    justify-content: center;
    background: white;
    margin-bottom: 10px;
    z-index: 1;
    font: Inter;
}

    .calendar-body .wrapper {
        width: 350px;
        background: #fff;
        border-radius: 10px;
        box-shadow: linear-gradient(180deg, #000000 -70.01%, rgba(0, 0, 0, 0) 110.44%);
    }

        .calendar-body .wrapper header {
            display: flex !important;
            align-items: center;
            padding: 0px 10px 0px;
            justify-content: space-between !important;
            color: #00698F;
            border: none !important;
        }

    .calendar-body header .icons {
        display: flex;
        position: relative;
        z-index: 100;
    }

        .calendar-body header .icons span {
            height: 38px;
            width: 38px;
            margin: 0 1px;
            cursor: pointer;
            color: #878787;
            text-align: center;
            line-height: 38px;
            font-size: 0.8rem;
            user-select: none;
            border-radius: 50%;
        }

    .calendar-body .icons span:last-child {
        margin-right: -10px;
    }

    .calendar-body header .icons span:hover {
        background: #f2f2f2;
    }

    .calendar-body header .current-date {
        font-size: 1.00rem;
        font-weight: 500;
        margin-bottom: 0px
    }

    .calendar-body .calendar {
        padding: 10px;
    }

        .calendar-body .calendar ul {
            display: flex;
            flex-wrap: wrap;
            list-style: none !important;
            text-align: center;
            margin-left: 0px;
        }

        .calendar-body .calendar .days {
            margin-bottom: 10px;
        }

        .calendar-body .calendar li {
            list-style-type: none !important;
            color: #333;
            width: calc(100% / 7);
            font-size: 0.7rem;
        }

        .calendar-body .calendar .weeks li {
            font-weight: 500;
            cursor: default;
        }

        .calendar-body .calendar .days li {
            z-index: 1;
            cursor: pointer;
            position: relative;
            margin-top: 15px;
        }

    .calendar-body .days li.inactive {
        color: #aaa;
    }

    .calendar-body .days li.active {
        color: #fff !important;
    }

    .calendar-body .days li::before {
        position: absolute;
        content: "";
        left: 50%;
        top: 50%;
        height: 40px;
        width: 40px;
        z-index: -1;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .calendar-body .days li.active::before {
        background: #00698F;
    }

    .calendar-body .days li:not(.active):hover::before {
        background: #f2f2f2;
    }

.calendar-title {
    position: absolute;
    width: 330px;
    height: 74px;
    z-index: 99;
    bottom: 0px;
    background: rgba(0,0,0,0.46);
    font: Inter;
    display: block;
}

    .calendar-title .title {
        width: 90%;
        font-weight: 500;
        font-size: 14px;
        padding-top: 7px;
        padding-left: 10px;
    }

        .calendar-title .title a {
            color: white !important;
            cursor: pointer;
        }

    .calendar-title .closeX {
        position: absolute;
        bottom: 50px;
        right: 10px;
        cursor: pointer;
    }

        .calendar-title .closeX img {
            width: 20px;
            height: 20px;
        }


.article-slide-right {
    position: relative;
    font-family: 'Global User Interface';
}

    .article-slide-right .item {
        position: relative;
        display: block;
    }

        .article-slide-right .item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
        }

    .article-slide-right .owl-carousel a {
        position: relative;
        padding: 0px;
    }

    .article-slide-right .content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        top: 0;
        padding: 10px 20px;
        border-radius: 6px;
        background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 63%);
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-end;
        color: white;
        font-size: 15px;
        line-height: 22px;
    }

    .article-slide-right .title a {
        top: -50px;
        left: 10px;
        padding: 18px 96px;
        position: absolute;
    }

    .article-slide-right .owl-dots {
        display: none
    }

.register-mail {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
    background: white;
    margin: 0px;
    font: "Roboto";
    margin-top: 10px;
    position: relative;
}

    .register-mail .loading {
        width: 100%;
        height: 100%;
        background: black;
        position: absolute;
        z-index: 2;
        left: 0;
        top: 0;
        display: none;
        opacity: 0.5;
    }

    .register-mail .ring {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        width: 150px;
        height: 150px;
        background: transparent;
        border: 3px solid #3c3c3c;
        border-radius: 50%;
        text-align: center;
        line-height: 150px;
        font-family: sans-serif;
        font-size: 20px;
        color: #00AAFF;
        letter-spacing: 4px;
        text-transform: uppercase;
        text-shadow: 0 0 10px #00AAFF;
        box-shadow: 0 0 20px rgba(0,0,0,.5);
        z-index: 3;
    }

        .register-mail .ring:before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-top: 3px solid #00AAFF;
            border-right: 3px solid #00AAFF;
            border-radius: 50%;
            animation: animateC 2s linear infinite;
        }

    .register-mail span {
        display: block;
        position: absolute;
        top: calc(50% - 2px);
        left: 50%;
        width: 50%;
        height: 4px;
        background: transparent;
        transform-origin: left;
        animation: animate 2s linear infinite;
        z-index: 3;
    }

        .register-mail span:before {
            content: '';
            position: absolute;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #00AAFF;
            top: -6px;
            right: -8px;
            box-shadow: 0 0 20px #00AAFF;
        }

.card {
    position: relative;
    width: 100%;
    background-clip: padding-box;
    box-shadow: 0 3px 8px rgba(34, 48, 62, 0.1), 0 0 transparent, 0 0 transparent;
    background-color: white;
    border-radius: 0.5rem;
    padding: 16px;
    margin-bottom: 16px
}

    .card .card-body {
    }

    .card .card-title {
    }

        .card .card-title h2 {
            margin: 0px;
            color: #697a8d
        }

    .card .card-body textarea {
        /*min-height: 120px;*/
        width: 100%;
        resize: vertical;
        overflow-x: hidden;
    }

    .card .card-body p {
        font-size: 13px;
    }

.menus-3 {
    padding: 5px 20px;
}

    .menus-3 .title {
        font-size: 24px;
        color: #4f4f4f;
        cursor: pointer;
        text-align: right
    }

    .menus-3 .list h3 {
        margin: 5px 0px;
        border-bottom: 1px #00B4F5 solid;
    }

        .menus-3 .list h3 a {
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            color: #00B4F5;
        }

    .menus-3 .list ul li {
        padding: 3px 0px
    }

    .menus-3 .list ul li {
        list-style-type: none
    }

        .menus-3 .list ul li a {
            font-size: 14px;
            font-weight: 500;
            color: #515158;
            padding: 5px 0px
        }

@keyframes animateC {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate {
    0% {
        transform: rotate(45deg);
    }

    100% {
        transform: rotate(405deg);
    }
}

.register-mail .title {
    text-align: center;
}

    .register-mail .title h1 {
        font-size: 18px;
        padding: 4px 0;
        color: #6591D9;
        font-weight: 600;
        text-transform: uppercase;
    }

.register-mail .form-data {
}

    .register-mail .form-data p {
        font-size: 12px;
        margin: 0px;
    }

    .register-mail .form-data .data {
        margin-bottom: 10px
    }

    .register-mail .form-data label {
        display: block;
        margin: 0 0 10px;
        color: gray;
        font-size: 10px;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase;
        letter-spacing: .2em;
    }

    .register-mail .form-data input {
        outline: none;
        display: block;
        background: #f2f2f2;
        width: 100%;
        border: 0;
        border-radius: 4px;
        box-sizing: border-box;
        padding: 10px 15px;
        color: black;
        font-family: inherit;
        font-size: inherit;
        font-weight: 600;
        line-height: inherit;
        transition: 0.3s ease;
    }

.register-mail .register {
    margin-top: 10px;
    text-align: center;
    margin-bottom: 10px;
}

    .register-mail .register a {
        color: white !important;
        padding: 10px 50px;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        background-color: #6591D9;
    }

.document-news-list {
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 0px 16px;
    margin-bottom: 10px;
}

    .document-news-list .title {
        display: flex;
        flex-direction: row;
        padding-top: 10px;
    }

        .document-news-list .title img {
            width: 15px;
            height: 15px;
            object-fit: contain;
            margin-right: 10px;
            margin-top: 7px;
        }

        .document-news-list .title p {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 0px
        }

    .document-news-list .row {
        padding: 0px 10px;
    }

        .document-news-list .row .item {
            padding: 10px 10px;
        }

    .document-news-list a {
        color: black !important;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
    }

.project-content {
}

    .project-content .title {
        text-align: left;
        margin: 5px;
    }

        .project-content .title p {
        }

    .project-content .content {
    }

        .project-content .content table {
            width: 100% !important;
            border-collapse: collapse;
            border: none;
            font-style: normal;
            font-variant-ligatures: normal;
            font-weight: 400;
            padding: 0px;
            text-align: justify;
            font-size: 14px !important;
            border: 1px solid black;
        }

            .project-content .content table tr td p {
                float: left;
                margin: 0px;
                font-size: 14px
            }

            .project-content .content table tr td span {
                white-space: pre-line;
            }

            .project-content .content table tr td:first-child {
                background: #F9F9F9;
                border: 1px solid #E9E9E9;
                box-sizing: border-box;
                font-weight: 500;
                font-size: 14px;
                line-height: 18px;
                color: #62748D;
                vertical-align: middle;
                width: 140px;
                padding: 10px;
            }

            .project-content .content table tr td:nth-child(2) {
                padding: 10px;
                border: 1px solid #E9E9E9;
                white-space: pre-line;
            }

.theme-list-text {
}

    .theme-list-text h3 {
        font-size: 25px;
        font-weight: 500;
        line-height: 30px;
        margin-bottom: 20px;
        text-align: justify;
    }

    .theme-list-text ul {
        margin: 0px;
        padding: 0px;
    }

        .theme-list-text ul li {
            list-style-type: none !important;
            margin-bottom: 7px;
        }

            .theme-list-text ul li i {
                color: #21a3da;
                margin-right: 10px
            }

            .theme-list-text ul li a {
                display: block;
                color: black;
                font-size: 18px;
                padding: 4px 0px;
                padding-left: 10px;
                position: relative;
                text-align: justify;
            }

                .theme-list-text ul li a:hover {
                    text-decoration: none;
                    color: #21a3da
                }

    .theme-list-text .box-search {
        margin: auto;
        position: relative;
    }

        .theme-list-text .box-search .form-control {
            border: 1px solid #8F969C;
            position: relative;
            vertical-align: top;
            background-color: transparent;
            height: 40px;
            box-shadow: none;
            font-size: 18px;
            border-radius: 4px;
            font-weight: 500;
            color: #1E2F41;
            display: block;
            width: 100%;
            padding: 6px 12px;
            line-height: 1.42857143;
            background-image: none;
            transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        }

            .theme-list-text .box-search .form-control:focus {
                border-color: #21a3da
            }

        .theme-list-text .box-search button {
            background: #F5F5F5;
            color: #1E2F41;
            top: 1px;
            right: 1px;
            height: auto;
            bottom: 1px;
            margin-bottom: 0px;
            width: 60px;
            min-width: 0px;
            border-radius: 0px;
            border-top-right-radius: 3px;
            border-bottom-right-radius: 3px;
            position: absolute;
            overflow: hidden;
            text-overflow: ellipsis;
            font-size: 18px;
            display: inline-block;
            padding: 6px 12px;
            font-weight: 400;
            line-height: 1.42857143;
            text-align: center;
            white-space: nowrap;
            vertical-align: middle;
            touch-action: manipulation;
            cursor: pointer;
            border: 1px solid transparent;
            user-select: none;
        }

.theme-detail-public-service {
    font-size: 18px;
    line-height: 24px;
    color: #1E2F41;
}

    .theme-detail-public-service h1 {
        margin-bottom: 10px;
        padding-left: 0px;
        height: auto;
        margin: 0px;
        font-size: 28px;
        font-weight: 300;
        display: block;
        margin-bottom: 20px;
        color: #333333;
        font-weight: 500;
        line-height: 36px;
        position: relative;
        text-align: justify;
    }

    .theme-detail-public-service .url {
        text-decoration: none;
        display: block;
        padding-left: 20px;
        position: relative;
        color: #21a3da;
    }

        .theme-detail-public-service .url:before {
            position: absolute;
            top: 0px;
            left: 0px;
            font-family: FontAwesome;
            content: "\f105";
            font-size: 16px;
            color: #21a3da;
        }

    .theme-detail-public-service .divider-gray {
        margin: 20px 0px;
        height: 1px;
        background: #E9F0F8;
    }

    .theme-detail-public-service h2 {
        font-size: 22px;
        font-weight: 500;
        line-height: 30px;
        margin: 20px 0px;
        text-align: justify;
    }

    .theme-detail-public-service .list-expand {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .theme-detail-public-service .list-expand .item {
        }

        .theme-detail-public-service .list-expand .title {
            cursor: pointer;
            display: block;
            padding: 15px 0px;
            color: #1E2F41;
            position: relative;
            padding-right: 40px;
            font-weight: 500;
            font-size: 22px;
        }

            .theme-detail-public-service .list-expand .title:hover {
                color: #21a3da;
            }

            .theme-detail-public-service .list-expand .title:before {
                content: "\f078";
                position: absolute;
                top: 0px;
                height: 20px;
                width: 20px;
                line-height: 20px;
                text-align: center;
                bottom: 0px;
                margin: auto;
                right: 0px;
                color: #8F969C;
                font-family: FontAwesome;
            }

        .theme-detail-public-service .list-expand .item.active .content {
            display: block !important;
        }

        .theme-detail-public-service .list-expand .item.active .title {
            color: #333;
        }

        .theme-detail-public-service .list-expand .content {
            display: none;
            margin-bottom: 20px;
        }

            .theme-detail-public-service .list-expand .content p {
                font-size: 17px;
                line-height: 30px;
                color: #1E2F41;
                margin-bottom: 15px
            }

    .theme-detail-public-service table {
        width: 100%;
        text-align: justify;
        font-size: 18px;
    }

        .theme-detail-public-service table th {
            white-space: nowrap;
            font-weight: 500;
            background: #f6f7f8;
            padding: 7px 10px !important;
            border: 1px #21a3da solid !important;
        }

        .theme-detail-public-service table td {
            padding: 7px 10px !important;
            padding-top: 15px !important;
            padding-bottom: 15px !important;
            border: 0.3px #21a3da solid;
        }

    .theme-detail-public-service p {
        font-size: 18px;
        text-align: justify
    }




/*Festival*/
.main-festival {
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    position: fixed;
    height: 300px;
    width: 300px;
}

#mainFestivalTopLeft {
    top: 50px;
    left: 0;
    z-index: 1001;
}

#mainFestivalTopRight {
    top: 50px;
    right: 0;
    z-index: 1001;
}

#mainFestivalBottomLeft {
    bottom: 0;
    left: 0;
    z-index: 1002;
}

#mainFestivalBottomRight {
    bottom: 0;
    right: 0;
    z-index: 1002;
}

/*HighChart*/
.highcharts-credits {
    display: none !important;
}

/*Th�ng tin chung*/
.information-home {
    font-family: "Inter";
}

    .information-home .item {
        text-decoration: none;
        padding: 10px;
        display: flex;
        flex-direction: row;
        cursor: pointer;
    }

        .information-home .item .img-info {
            width: fit-content;
            height: fit-content;
            border: solid 0.1px rgb(192, 192, 192, 1);
        }

            .information-home .item .img-info img {
                width: 180px;
                height: 80px;
                object-fit: fill;
            }

        .information-home .item .content-info {
            width: 100%;
            padding: 5px 10px;
            background-color: rgb(192, 192, 192, 0.2);
            border: solid 0.1px rgb(192, 192, 192, 1);
            border-top-right-radius: 10px
        }

            .information-home .item .content-info p {
                margin-bottom: 5px;
                font-size: 18px;
                font-weight: 600;
                color: black;
            }

            .information-home .item .content-info span {
                font-size: 14px;
                font-weight: 500;
                color: #4a5568;
            }

.area-input-file {
    width: 100%;
    height: 400px;
    background-color: cadetblue;
    padding: 10px;
    position: relative;
}

    .area-input-file .area {
        display: flex;
        flex-direction: column;
        border: 2px dashed gray;
        width: 100%;
        height: 100%;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
    }

    .area-input-file label {
        font-size: 24px;
        position: absolute;
        width: auto;
    }

    .area-input-file .file {
        opacity: 0;
        padding: 2rem;
        width: 100%;
        height: 100%;
        cursor: pointer
    }

.btn-area-input-file {
    width: 100%;
    height: 40px;
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: 500;
    background-color: mediumseagreen
}

.file-manager {
    width: 100%;
    height: auto;
    font-family: Inter;
    background-color: whitesmoke;
    padding: 20px;
}

    .file-manager .folder-first {
        display: flex;
        flex-direction: column;
        background-color: white;
        padding: 10px;
        border-radius: 10px;
    }

        .file-manager .folder-first h3 {
            font-size: 18px;
            font-weight: 600;
            color: #4a4d56;
            width: fit-content;
            padding-bottom: 5px;
            border-bottom: 2px #4a4d56 solid;
        }

        .file-manager .folder-first span {
            background-color: chocolate;
            padding: 3px 6px;
            font-size: 14px;
            border-radius: 3px;
            font-weight: 500;
            color: white;
            display: inline-block;
            margin-bottom: 5px;
        }

        .file-manager .folder-first b {
            color: #5e6168;
            font-size: 16px;
            margin-right: 5px;
            margin-bottom: 10px;
        }

        .file-manager .folder-first ul {
        }

            .file-manager .folder-first ul li {
                list-style-type: none;
                margin-bottom: 10px;
                cursor: pointer;
                color: #4a4d56;
                font-size: 15px;
                font-weight: 500;
            }

                .file-manager .folder-first ul li img {
                    width: 20px;
                    height: 20px;
                }

        .file-manager .folder-first p {
            font-family: inherit;
            font-weight: 500;
            line-height: 1.1;
            color: inherit;
            margin-top: 10px;
            margin-bottom: 10px;
            font-size: 18px;
        }

    .file-manager .files {
        display: flex;
        flex-direction: column;
    }

        .file-manager .files .item {
            min-height: 150px;
            height: auto;
            filter: drop-shadow(0 4px 3px rgb(0 0 0 / 0.07)) drop-shadow(0 2px 2px rgb(0 0 0 / 0.06));
        }

            .file-manager .files .item .file {
                height: 100px;
                background-color: white;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                cursor: pointer;
            }

                .file-manager .files .item .file img {
                    width: 60px;
                    height: 60px;
                }

            .file-manager .files .item .name {
                padding: 5px;
            }

                .file-manager .files .item .name p {
                    margin: 0px;
                    font-size: 14px;
                    font-weight: 600;
                    color: white;
                }

.title-view {
    font-size: 18px
}

.register-invest {
    display: flex;
    flex-direction: row
}

    .register-invest .overlay {
        background: #FF416C;
        background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
        background: linear-gradient(to right, #FF4B2B, #FF416C);
        background-repeat: no-repeat;
        background-size: cover;
        color: #FFFFFF;
        position: relative;
        width: 60%;
    }

    .register-invest .form {
        background-color: #FFFFFF;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px 50px;
        height: 100%;
        width: 40%;
        text-align: center;
    }

        .register-invest .form a {
            text-decoration: none;
            cursor: pointer;
            border-radius: 20px;
            border: 1px solid #FF4B2B;
            background-color: #FF4B2B;
            color: #FFFFFF;
            font-size: 12px;
            font-weight: bold;
            padding: 12px 45px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: transform 80ms ease-in;
            margin-bottom: 30px;
        }

        .register-invest .form input {
            background-color: #eee;
            border: none;
            padding: 12px 15px;
            margin: 8px 0;
            width: 100%;
        }

        .register-invest .form .error {
            color: red;
            font-size: 14px
        }

    .register-invest .overlay .overlay-panel {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        padding: 20px 40px;
        text-align: center;
        top: 0;
        height: 100%;
    }

        .register-invest .overlay .overlay-panel h1 {
            font-weight: 600;
            color: white;
            font-size: 30px;
        }

    .register-invest .text-line {
        display: flex;
        flex-direction: column;
        text-align: justify;
    }

.manager-export-file {
}

    .manager-export-file h4 {
        color: #337ab7;
    }

    .manager-export-file table tbody tr td:nth-child(3) {
        text-align: center
    }

    .manager-export-file table tbody tr td a {
        cursor: pointer;
    }

    .manager-export-file table tbody tr td img {
        width: 30px;
        height: 30px
    }

.api-general-use {
}

    .api-general-use h4 {
        margin: 10px 0px;
        color: #337ab7;
    }


    .api-general-use table tbody tr td:nth-child(3) {
        text-align: center
    }

    .api-general-use table tbody tr td:nth-child(4) {
        text-align: center
    }

    .api-general-use table tbody tr td a {
        cursor: pointer;
        font-size: 16px
    }

    .api-general-use #token {
        resize: vertical;
        height: 80px
    }

    .api-general-use #data-json {
        resize: vertical;
        height: 400px
    }

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .prev, .next, .text {
        font-size: 11px
    }
}

@media (min-width: 992px) {
    .col-md-8_5 {
        width: 71%;
        float: left;
    }

    .col-md-3_5 {
        width: 28%;
        float: right
    }
}

/**/
/*Key Frame*/
@keyframes fade {
    0% {
        opacity: .6
    }

    25% {
        opacity: .8
    }

    50% {
        opacity: 1
    }

    80% {
        opacity: 1
    }

    100% {
        opacity: 1
    }
}

@keyframes change-bg-active {
    0% {
        background-color: #22B14C;
    }

    100% {
        background-color: #29D65C;
    }
}

@keyframes change-bg-nonactive {
    0% {
        background-color: orangered;
    }

    100% {
        background-color: orange;
    }
}

@keyframes alert-animation-success {
    0% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid green;
        display: block;
    }

    50% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid green;
        display: block;
    }

    90% {
        width: 300px;
        padding: 8px;
        border-left: 4px solid green;
        display: block;
    }

    100% {
        width: 0px;
        padding: 0px;
        border: 0px;
        display: none
    }
}

@keyframes alert-animation-warning {
    0% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid gold;
        display: block;
    }

    50% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid gold;
        display: block;
    }

    90% {
        width: 300px;
        padding: 8px;
        border-left: 4px solid gold;
        display: block;
    }

    100% {
        width: 0px;
        padding: 0px;
        border: 0px;
        display: none
    }
}

@keyframes alert-animation-danger {
    0% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid Crimson;
        display: block;
    }

    50% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid Crimson;
        display: block;
    }

    90% {
        width: 300px;
        padding: 8px;
        border-left: 4px solid Crimson;
        display: block;
    }

    100% {
        width: 0px;
        padding: 0px;
        border: 0px;
        display: none
    }
}

@keyframes alert-animation-info {
    0% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid DarkBlue;
        display: block;
    }

    50% {
        width: 300px;
        padding: 16px;
        border-left: 4px solid DarkBlue;
        display: block;
    }

    90% {
        width: 300px;
        padding: 8px;
        border-left: 4px solid DarkBlue;
        display: block;
    }

    100% {
        width: 0px;
        padding: 0px;
        border: 0px;
        display: none
    }
}

#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media only screen and (max-width: 800px) {
    .form-area-slide {
        width: 100%;
    }

    .form-input-slide {
        width: 95%;
    }

        .form-input-slide:active,
        .form-input-slide:focus {
            width: 100%;
        }
}

@media only screen and (max-width: 1200px) {
    .form-area-slide {
        width: 100%;
    }
}

@media only screen and (max-width: 990px) {
    .btn-create {
        background-color: rgb(0 162 232);
        cursor: pointer;
        color: white !important;
        border-radius: 99px;
        border: rgb(0 162 232);
        padding-top: 5px;
        padding-bottom: 5px;
        padding-right: 5px;
        padding-left: 5px;
        text-decoration: none;
        font-weight: 600;
        margin-right: 10px;
    }

        .btn-create p {
            display: none;
        }

        .btn-create:hover {
            background-color: turquoise;
            text-decoration: none;
            color: white;
        }

    .search-form {
        border-radius: 1rem;
    }

        .search-form:hover .input-search {
            width: 150px;
            padding-left: 34px;
        }

    .i-search {
        width: 35px;
    }

    .input-search {
        height: 30px;
        width: 30px;
        background-color: white;
        display: block;
        font-size: 12px;
        padding-left: 30px;
        color: black;
        border: white;
        border-radius: 1rem;
        transition: all 0.5s ease-in-out;
    }

        .input-search:focus {
            width: 150px;
            margin-top: 0px;
            color: black;
            border: white;
            border-radius: 1rem;
            outline: none;
            font-size: 12px;
            padding-left: 34px;
        }
}

.elementor-slide-left {
    visibility: hidden;
}

.elementor-slide-right {
    visibility: hidden;
}

.animated {
    animation-duration: 1.25s;
}

.slideInLeft {
    max-width: 100%;
    animation-name: slideInLeft;
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    max-width: 100%;
    animation-name: slideInRight;
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    100% {
        transform: translate3d(0, 0, 0);
    }
}

@media only screen and (max-width: 1920px) {
    .main-festival {
        height: auto;
        max-width: 100%;
        width: calc((100vw - 1215px) / 2);
    }
}

@media only screen and (max-width: 1120px) {
    main {
        width: 100vw !important;
        padding: 0px !important;
        margin: 0px !important;
        overflow: hidden;
    }
}
